home *** CD-ROM | disk | FTP | other *** search
/ Dynamic HTML Construction Kit / Dynamic HTML Construction Kit.iso / source_code / tydhtml / dyn.exe / Chap06 / dyn6_2.txt < prev    next >
Encoding:
Text File  |  1997-10-02  |  607 b   |  28 lines

  1. <HTML>
  2. HEAD>
  3. <TITLE>mouseover and mouseout</TITLE>
  4. </HEAD>
  5. <STYLE type="text/css">
  6. <!--
  7. H1 {color:green}
  8. -->
  9. </STYLE>
  10. <SCRIPT  language ="javascript">
  11. <!--
  12. function changeColor() {
  13.    head_0.style.color = "blue";
  14.    head_0.style.fontStyle = "italic";
  15. }
  16. function changeColorBack() {
  17.   head_0.style.color = "green";
  18.   head_0.style.fontStyle = "normal";
  19. }
  20. //-->
  21. </SCRIPT>
  22. <BODY>
  23. <H1 id="head_0" onMouseover="changeColor()" nMouseout="changeColorBack()">
  24. This is green, except when the mouse points at it</H1>
  25. <P>This is some body text.</P>
  26. </BODY>
  27. </HTML>
  28.